execute linux command in python

38

import os
cmd = 'your command here'
os.system(cmd)

Comments

Submit
0 Comments